【CSS】text-decoration - テキストの装飾

【CSS】text-decoration - テキストの装飾

CSSのtext-decorationプロパティについて解説します。

検証環境

text-decoration

text-decorationは“テキスト装飾の一括設定”のプロパティです。

基本構文

text-decoration: 種類(複数可) スタイル カラー 太さ;

各項目の個別設定は個別プロパティで設定できます。

サンプル

テキストの装飾線を一括設定するサンプルです。

<style>
p {
    ___ih_hl_start
    text-decoration: underline overline wavy red 3px;
    ___ih_hl_end
}
</style>

<p>CSS : Cascading Style Sheets</p>